复制本地linux文件到远程服务器
scp /home/files root@172.16.252.32:/user/aa
复制远程服务器的文件到本地
scp root@172.16.252.32:/home/files /home/files
出现not a regular file 错误 是因为复制的不是一个文件而是一个文件夹,需要加-r 参数
scp -r root@172.16.252.32:/home/files /home/files
复制本地linux文件到远程服务器
scp /home/files root@172.16.252.32:/user/aa
复制远程服务器的文件到本地
scp root@172.16.252.32:/home/files /home/files
出现not a regular file 错误 是因为复制的不是一个文件而是一个文件夹,需要加-r 参数
scp -r root@172.16.252.32:/home/files /home/files
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。